home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
compcomp
/
awk
/
unbundle.awk
< prev
next >
Wrap
Text File
|
1990-02-07
|
165b
|
9 lines
# unbundle -- unpack a bundle into separate files
# AKW p 82
$1 != prev { close(prev); prev = $1 }
{
print substr($0, index($0, " ") + 1) >$1
}